

/* Base reset & font */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #101820, #303841); /* same dark gradient */
  color: #fff;
  overflow-x: hidden;
}

/* NAVBAR - exact same as services/contact */
.navbar {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 60px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  position: sticky;
  top:0;
  z-index:1000;
}
.logo { font-size:1.8rem; font-weight:700; }
.highlight { color:#00ffff; }
.nav-links ul { display:flex; gap:30px; list-style:none; }
.nav-links a { color:#fff; text-decoration:none; font-weight:500; position:relative; transition:color .3s; }
.nav-links a::after { content:""; position:absolute; left:0; bottom:-5px; width:0; height:2px; background:#00ffff; transition:width .3s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.menu-icon { display:none; font-size:1.5rem; cursor:pointer; }

/* HERO - same visual as Services/Contact */
.hero {
  text-align:center;
  padding:100px 20px 60px;
  background: linear-gradient(to bottom right, #0d7377, #14ffec);
  color:#fff;
  border-radius: 0 0 100px 100px;
}
.hero h1 { font-size:3rem; margin-bottom:12px; animation: fadeDown 1s ease; }
.hero p { font-size:1.1rem; opacity:0.95; }

/* ABOUT LAYOUT — uses same two-column layout as contact-section */
.contact-section.about-section {
  display:flex;
  gap:60px;
  justify-content:center;
  align-items:flex-start;
  padding: 60px 60px;
  flex-wrap:wrap;
}

/* Left panel (same as contact-info style) */
.contact-info {
  max-width:420px;
  background: rgba(255,255,255,0.02);
  padding: 26px;
  border-radius:12px;
  color: rgba(255,255,255,0.92);
}
.contact-info h3 { font-size:1.6rem; color:#14ffec; margin-bottom:8px; }
.contact-info p { color: rgba(255,255,255,0.85); line-height:1.6; margin-bottom:12px; }

/* Right panel (re-uses contact-form glass style) */
.contact-form.about-panel {
  width:420px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding:28px;
  border-radius:12px;
  box-shadow: 0 0 20px rgba(20,255,236,0.12);
  display:flex;
  flex-direction:column;
  gap:14px;
}
.about-panel h3 { color:#14ffec; margin-bottom:6px; }
.skill {
  background: rgba(255,255,255,0.04);
  padding:10px 12px;
  border-radius:8px;
  display:flex;
  align-items:center;
  gap:12px;
  color: #fff;
  font-weight:500;
}
.about-panel .btn {
  margin-top:10px;
  background: linear-gradient(90deg, #00adb5, #14ffec);
  color:#000;
  border:none;
  padding:12px;
  border-radius:8px;
  font-weight:700;
  cursor:pointer;
  transition: transform .2s ease, box-shadow .25s;
}
.about-panel .btn:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(20,255,236,0.24); }

/* VALUES CARDS (re-uses service-card styles) */
.services-section.values-section {
  display:flex;
  justify-content:center;
  gap:36px;
  padding:60px 60px;
  flex-wrap:wrap;
}
.service-card {
  width:300px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding:36px 22px;
  border-radius:12px;
  text-align:center;
  box-shadow: 0 0 15px rgba(20,255,236,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card i { font-size:2.2rem; color:#14ffec; margin-bottom:12px; display:block; }
.service-card h3 { color:#14ffec; margin-bottom:8px; }
.service-card p { color: #dfeff0; font-size:0.98rem; line-height:1.5; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 10px 25px rgba(20,255,236,0.18); }

/* FOOTER - identical to other pages */
.footer {
  background:#0a0a0a;
  display:flex;
  justify-content:space-around;
  flex-wrap:wrap;
  padding:60px 30px;
  text-align:left;
}
.footer-col h2, .footer-col h3 { color:#14ffec; margin-bottom:12px; }
.footer-col p, .footer-col a { color:#fff; text-decoration:none; }
.footer-col ul { list-style:none; padding:0; margin:0; }
.bottom-bar {
  text-align:center;
  background:#050505;
  padding:20px;
  color:#aaa;
  font-size:.9rem;
}

/* ANIMATION UTIL (same data-animate behaviour) */
[data-animate] { opacity:0; transform: translateY(30px); transition: all 1s ease-out; }
[data-animate].visible { opacity:1; transform: translateY(0); }

@keyframes fadeDown {
  from { opacity:0; transform: translateY(-30px); }
  to { opacity:1; transform: translateY(0); }
}

/* RESPONSIVE (same breakpoints & behaviour as Services/Contact) */
@media (max-width: 768px) {
  .navbar { padding:20px 30px; }
  .menu-icon { display:block; }
  .nav-links ul { display:none; }
  .contact-section.about-section { padding:40px 20px; flex-direction:column; align-items:center; }
  .about-panel, .contact-info { width:100%; max-width:520px; }
  .services-section.values-section { padding:40px 24px; gap:20px; }
  .hero h1 { font-size:2.2rem; }
}
